home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 734 b | 42 lines | [TEXT/ScoM] |
- ; template for conversion of lengths to tick values.
-
- (def-neuron len
- (out-range 0 0)
- (otherwise (get-tick (in 1 0)))
- )
-
- (setq tics (run-neuron 'len
- '(1/4 1/8-5 1/8t 1/4-7 1/1)))
-
-
- ; try evaluating the following expressions one by one
-
- (setq rhy '(1/4 1/4 1/2 1/8))
-
- (get-tick '1/4)
-
- (defun tickcalc (list-of-lengths)
- (mapcar 'get-tick list-of-lengths))
-
- ; mapcar applies a function to succesive items in a list.
-
- (tickcalc rhy)
-
- (setq rhy1 (tickcalc '(1/4 1/2 1/8-5 1/8-5 1/8-5 -1/8-5 1/8-5 1/4)))
-
-
-
- ; additional SC internals useful for creating functions.
-
- (symbol-to-integer 'b)
- ; --> 1
- (integer-to-symbol 1)
- ; --> b
- (abs-to-nam 1)
- ; --> c#
- (note-to-abs 'c# 0)
- ; --> 1
- (abs-to-oct 5)
- ; --> 5/12
-
-